home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / util / moni / Scout-src.lha / include / patchcontrol.h < prev    next >
C/C++ Source or Header  |  2002-09-16  |  537b  |  26 lines

  1. #ifndef PATCHCONTROL_H
  2. #define PATCHCONTROL_H 1
  3.  
  4. #define PATCHRES_NAME       "patch.resource"
  5.  
  6. struct PatchControlNode {
  7.     struct PatchControlNode *pcn_Next;
  8.     ULONG pcn_unknown0;
  9.     struct Library *pcn_Library;
  10.     LONG pcn_Offset;
  11.     APTR pcn_FunctionAddress;
  12.     ULONG pcn_unknown1;
  13.     UBYTE *pcn_TaskName;
  14. };
  15.  
  16. extern struct Library *PatchBase;
  17.  
  18. APTR GetPatchList( void );
  19. void FreePatchList( APTR list );
  20.  
  21. #pragma libcall PatchBase GetPatchList 6 00
  22. #pragma libcall PatchBase FreePatchList c 801
  23.  
  24. #endif /* PATCHCONTROL_H */
  25.  
  26.